<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Style for the body background */
body {
    background: url('assets/images/background.png') repeat;
    background-size: cover;
    margin: 0; /* Ensure no default margin affects the background */
    padding: 0;
}

/* Style for the carousel buttons */
.carousel-btn {
    background: none; /* Remove any default background */
    color: white;
    border: none; /* Remove border */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: background-color 0.3s ease;
    outline: none; /* Remove focus outline */
}

.carousel-btn:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-color: transparent;
}

.product-image {
    background: transparent; /* Ensure the container has no background */
    padding: 0; /* Remove any padding */
    margin: 0 auto; /* Center the container */
    max-width: 100%; /* Ensure it doesn't exceed the viewport width */
}

.product-image img {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: auto;
    /* Remove box-shadow to eliminate transparent border */
    box-shadow: none;
    position: relative;
}

.product-image img::after {
    content: none; /* Remove the pseudo-element for reflection */
}

.carousel {
    background: transparent; /* Ensure the carousel has no background */
    padding: 0; /* Remove any padding */
    margin: 0 auto; /* Center the carousel */
}

/* Ensure the product details are aligned to the right of the image */
.product-page {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
    margin-top: 80px; /* Add margin to the top of the product page to prevent clipping through the navbar */
}

.product-image {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.product-details {
    flex: 1;
    max-width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.next-btn {
    background: url('assets/images/diskback.png') no-repeat center center;
    background-size: contain;
    width: 40px; /* Adjust width to match the icon size */
    height: 40px; /* Adjust height to match the icon size */
    border: none; /* Remove border */
    cursor: pointer;
}

.prev-btn {
    background: url('assets/images/nobgcd.jpg') no-repeat center center;
    background-size: contain;
    width: 30px; /* Set width to 30px */
    height: 30px; /* Set height to 30px */
    border: none; /* Remove border */
    cursor: pointer;
}

.carousel-controls {
    display: flex;
    justify-content: center; /* Center the arrows horizontally */
    gap: 10px; /* Add spacing between the arrows */
    margin-top: 10px; /* Add spacing above the controls */
}

/* Add padding to the navbar */
.navbar {
    padding: 20px; /* Add padding to create space inside the navbar */
}

/* Style for the 'Add to Cart' button */
.add-to-cart-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 16px; /* Reduce padding to make it smaller */
    font-size: 0.9rem; /* Adjust font size for better proportion */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 4px; /* Make it less round */
    font-family: 'Arial', sans-serif;
    margin-top: 20px;
    width: auto; /* Allow the button to adjust its width based on content */
    max-width: 150px; /* Set a maximum width to ensure it is not too long */
    text-align: center; /* Center the text within the button */
}

.add-to-cart-btn:hover {
    background-color: #444;
    transform: scale(1.05);
}

.collapsible {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.collapsible-content {
    font-size: 0.85rem; /* Make the text smaller */
    line-height: 1.4; /* Adjust line height for readability */
}

.carousel-icon {
    width: 30px; /* Set a smaller width */
    height: auto; /* Maintain aspect ratio */
}

/* Flip the image of the left carousel button horizontally */
.carousel-btn.prev-btn .carousel-icon {
    transform: scaleX(-1); /* Flip the image horizontally */
    margin-top: 10px; /* Move the left pointing finger down for alignment */
}

@media (max-width: 600px) {
  .product-page {
    flex-direction: row;
    gap: 10px;
    padding: 10px 8px;
    margin-top: 40px;
    align-items: flex-start;
  }
  .product-image {
    max-width: 50%;
    min-width: 140px;
    padding: 0 4px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
  }
  .product-image img {
    max-width: 100%;
    height: auto;
    display: block;
    position: static;
    z-index: 1;
  }
  .product-details {
    max-width: 50%;
    min-width: 140px;
    padding: 0 4px;
    box-sizing: border-box;
    gap: 10px;
    position: relative;
    z-index: 2;
    background: none; /* Remove white background */
    opacity: 1; /* Reset opacity */
  }
  .add-to-cart-btn {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    margin-top: 16px;
  }
  .navbar {
    padding: 10px;
  }
  .carousel-controls {
    gap: 5px;
    margin-top: 5px;
  }
  .collapsible-content {
    font-size: 1rem;
  }
}

/* Desktop only: fix navbar to the top */
@media (min-width: 601px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.7); /* Optional: subtle background for readability */
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  .product-page {
    margin-top: 100px; /* Add space for fixed navbar */
  }
}
</pre></body></html>